You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gristlabs_grist-core/app/server/lib/docUtils.d.ts

10 lines
668 B

export function makeIdentifier(name: string): string;
export function copyFile(src: string, dest: string): Promise<void>;
export function createNumbered(name: string, separator: string, creator: (path: string) => Promise<void>,
startNum?: number): Promise<string>;
export function createNumberedTemplate(template: string, creator: (path: string) => Promise<void>): Promise<string>;
export function createExclusive(path: string): Promise<void>;
export function realPath(path: string): Promise<string>;
export function pathExists(path: string): Promise<boolean>;
export function isSameFile(path1: string, path2: string): Promise<boolean>;