mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-17 04:41:36 +08:00
22 lines
650 B
TypeScript
22 lines
650 B
TypeScript
/**
|
|
* Provides FileNameResolver class used for loading files based on device capabilities.
|
|
* @module "file-system/file-name-resolver"
|
|
*/ /** */
|
|
|
|
export interface PlatformContext {
|
|
width: number;
|
|
height: number;
|
|
os: string;
|
|
deviceType: string;
|
|
}
|
|
|
|
export class FileNameResolver {
|
|
constructor(context: PlatformContext);
|
|
resolveFileName(path: string, ext: string): string;
|
|
clearCache(): void;
|
|
}
|
|
|
|
export function resolveFileName(path: string, ext: string): string;
|
|
export function clearCache(): void;
|
|
export function _findFileMatch(path: string, ext: string, candidates: Array<string>, context: PlatformContext): string;
|