mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-15 19:26:42 +08:00
7 lines
525 B
TypeScript
7 lines
525 B
TypeScript
export * as constants from './constants';
|
|
|
|
export function open(path: string, callback: (error: Error, fd: number) => void);
|
|
export function open(path: string, flags: string | number, callback: (error: Error, fd: number) => void);
|
|
export function open(path: string, flags: string | number, mode: number | undefined | null, callback: (error: Error | null, fd: number) => void);
|
|
export function open(path: string, flags: string | number, mode?: number | undefined | null, callback?: (error: Error | null, fd: number) => void);
|