Interface SnippetGoToOptions

interface SnippetGoToOptions {
    parameters?: SnippetParameters[];
    question?: number;
    validate?: {
        regex?: {
            match?: SnippetParameters;
            noMatch?: SnippetParameters;
            regex: string;
            token: string;
        };
    };
}

Properties

parameters?: SnippetParameters[]
question?: number
validate?: {
    regex?: {
        match?: SnippetParameters;
        noMatch?: SnippetParameters;
        regex: string;
        token: string;
    };
}