mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-08-22 20:41:50 +08:00
feat(native): NotifyEvent types
This commit is contained in:
Vendored
+3
-5
@@ -27,6 +27,7 @@ export function watch(
|
||||
options?: WatchOptions | undefined | null
|
||||
): FSWatcher;
|
||||
export class Subscription {
|
||||
toString(): string;
|
||||
unsubscribe(): void;
|
||||
}
|
||||
export type FSWatcher = FsWatcher;
|
||||
@@ -34,11 +35,8 @@ export class FsWatcher {
|
||||
get kind(): WatcherKind;
|
||||
toString(): string;
|
||||
subscribe(
|
||||
callback: (value: any) => any,
|
||||
errorCallback?: (
|
||||
err: Error | null,
|
||||
value: undefined
|
||||
) => any | undefined | null
|
||||
callback: (event: import('./event').NotifyEvent) => void,
|
||||
errorCallback?: (err: Error) => void
|
||||
): Subscription;
|
||||
close(): void;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user