basant307/AI_Governance_Project
048
1export class StyleModule {2 constructor(spec: {[selector: string]: StyleSpec}, options?: {3 finish?(sel: string): string4 })5 getRules(): string6 static mount(7 root: Document | ShadowRoot | DocumentOrShadowRoot,8 module: StyleModule | ReadonlyArray<StyleModule>,9 options?: {nonce?: string}10 ): void11 static newName(): string12}13 14export type StyleSpec = {15 [propOrSelector: string]: string | number | StyleSpec | null16}17 