UNPKG

635 BTypeScriptView Raw
1import { Workspace } from '../workspace';
2export declare function projectSourceDirectories(workspace: Workspace): any[];
3export declare function projectSourceDirectoryGlobPattern(workspace: Workspace): any;
4export declare function graphQLSchemaPath(workspace: Workspace, idl?: boolean): string;
5export declare function makePrivateDirectory({paths}: Workspace): Promise<void>;
6export declare function makeGitIgnoredDirectory(path: string): Promise<void>;
7export interface OpenFileOptions {
8 line: number;
9 column: number;
10}
11export declare function openFile(file: string, {line, column}?: Partial<OpenFileOptions>): Promise<void>;