AFFiNE/packages/native/index.d.ts

43 lines
1.0 KiB
TypeScript
Raw Normal View History

/* tslint:disable */
/* eslint-disable */
/* auto-generated by NAPI-RS */
2023-05-10 12:16:48 +03:00
export interface WatchOptions {
recursive?: boolean;
}
2023-05-10 12:16:48 +03:00
/** Watcher kind enumeration */
export const enum WatcherKind {
/** inotify backend (linux) */
Inotify = 'Inotify',
/** FS-Event backend (mac) */
Fsevent = 'Fsevent',
/** KQueue backend (bsd,optionally mac) */
Kqueue = 'Kqueue',
/** Polling based backend (fallback) */
PollWatcher = 'PollWatcher',
/** Windows backend */
ReadDirectoryChangesWatcher = 'ReadDirectoryChangesWatcher',
/** Fake watcher for testing */
NullWatcher = 'NullWatcher',
Unknown = 'Unknown',
}
export function watch(
p: string,
options?: WatchOptions | undefined | null
): FSWatcher;
export class Subscription {
2023-05-10 13:06:26 +03:00
toString(): string;
2023-05-10 12:16:48 +03:00
unsubscribe(): void;
}
export type FSWatcher = FsWatcher;
export class FsWatcher {
get kind(): WatcherKind;
toString(): string;
subscribe(
2023-05-10 13:06:26 +03:00
callback: (event: import('./event').NotifyEvent) => void,
errorCallback?: (err: Error) => void
2023-05-10 12:16:48 +03:00
): Subscription;
close(): void;
}