export default interface ISnippet {
    description: string;
    prefix: string[];
    body: string[];
}
