// Definitions by: Junyoung Clare Jang // TypeScript Version: 2.0 export interface Options { nonce?: string key: string container: Node speedy?: boolean /** @deprecate use `insertionPoint` instead */ prepend?: boolean insertionPoint?: HTMLElement } export class StyleSheet { isSpeedy: boolean ctr: number tags: Array container: Node key: string nonce?: string before?: ChildNode | null constructor(options?: Options) insert(rule: string): void flush(): void hydrate(nodes: Array): void }