Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
11 lines
526 B
Plaintext
11 lines
526 B
Plaintext
/// <reference types="node" />
|
|
import type { FunctionPropertyNames, FMember } from './types';
|
|
import type * as fs from 'fs';
|
|
type FS = typeof fs;
|
|
export declare function splitTwoLevels<FSObject>(functionName: FMember): [FunctionPropertyNames<FSObject> & string] | [FunctionPropertyNames<FSObject> & string, string];
|
|
export declare function indexFs<FSObject extends FS | FS['promises']>(fs: FSObject, member: FMember): {
|
|
objectToPatch: any;
|
|
functionNameToPatch: string;
|
|
};
|
|
export {};
|
|
//# sourceMappingURL=utils.d.ts.map |