@pkerschbaum/code-oss-file-service
Version:
VS Code ([microsoft/vscode](https://github.com/microsoft/vscode)) includes a rich "`FileService`" and "`DiskFileSystemProvider`" abstraction built on top of Node.js core modules (`fs`, `path`) and Electron's `shell` module. This package allows to use that
8 lines • 563 B
TypeScript
export declare function createDecorator(mapFn: (fn: Function, key: string) => Function): Function;
export declare function memoize(_target: any, key: string, descriptor: any): void;
export interface IDebounceReducer<T> {
(previousValue: T, ...args: any[]): T;
}
export declare function debounce<T>(delay: number, reducer?: IDebounceReducer<T>, initialValueProvider?: () => T): Function;
export declare function throttle<T>(delay: number, reducer?: IDebounceReducer<T>, initialValueProvider?: () => T): Function;
//# sourceMappingURL=decorators.d.ts.map