Interface NotebookRendererContribution

interface NotebookRendererContribution {
    displayName: string;
    entrypoint: string | {
        extends: string;
        path: string;
    };
    id: string;
    mimeTypes: string[];
    requiresMessaging?: "always" | "optional" | "never";
}

Properties

displayName: string
entrypoint: string | {
    extends: string;
    path: string;
}

Type declaration

  • Readonly extends: string
  • Readonly path: string
id: string
mimeTypes: string[]
requiresMessaging?: "always" | "optional" | "never"