UNPKG

@prisma/language-server

Version:
10 lines (9 loc) 379 B
import { CompletionList } from 'vscode-languageserver'; import { PrismaSchema } from '../Schema'; /** * Returns the currently available _blocks_ for completion. * Currently available: Generator, Datasource, Model, Enum, View * @param lines * @returns the list of block suggestions */ export declare function getSuggestionForBlockTypes(schema: PrismaSchema): CompletionList;