UNPKG

@codesnippets/codesnippets

Version:
16 lines (15 loc) 426 B
import { Language } from './language'; export declare class Snippet { readonly name: string; private language; private object; constructor(name: string, language: Language, object: any); private doRequest; private initDir; private getFile; /** * Gets the file contents of the snippet. * @param callback called when the snippet is retrieved */ get(): string; }