interface CustomElementOptions {
    configureApp?: ((app: App<any>) => void);
    nonce?: string;
    shadowRoot?: boolean;
    styles?: string[];
}

Properties

configureApp?: ((app: App<any>) => void)
nonce?: string
shadowRoot?: boolean
styles?: string[]