blob: 44f0482346f49941236a427df7cef346616ef69a (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
export type Reservation = {
paths: string[];
dirs: Set<string>;
};
export type Handler = (clear: () => void) => void;
export declare class PathReservations {
#private;
reserve(paths: string[], fn: Handler): boolean;
check(fn: Handler): boolean;
}
//# sourceMappingURL=path-reservations.d.ts.map
|