mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
21 lines
547 B
TypeScript
21 lines
547 B
TypeScript
// Type definitions for extract-files 3.1
|
|
// Project: https://github.com/jaydenseric/extract-files#readme
|
|
// Definitions by: Edward Sammut Alessi <https://github.com/Slessi>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
export interface ReactNativeFileOptions {
|
|
uri: string;
|
|
type: string;
|
|
name: string;
|
|
}
|
|
|
|
export class ReactNativeFile {
|
|
uri: string;
|
|
type: string;
|
|
name: string;
|
|
|
|
constructor(options: ReactNativeFileOptions);
|
|
|
|
static list(files: ReactNativeFileOptions[]): ReactNativeFile[];
|
|
}
|