Interface NotebookContribution

interface NotebookContribution {
    displayName: string;
    priority?: string;
    selector?: readonly {
        excludeFileNamePattern?: string;
        filenamePattern?: string;
    }[];
    type: string;
}

Properties

displayName: string
priority?: string
selector?: readonly {
    excludeFileNamePattern?: string;
    filenamePattern?: string;
}[]
type: string