芝麻web文件管理V1.00
编辑当前文件:/home/freeclou/app.optimyar.com/backend/node_modules/@emotion/utils/types/index.d.ts
// Definitions by: Junyoung Clare Jang
// TypeScript Version: 2.2 export interface RegisteredCache { [key: string]: string } export interface StyleSheet { container: HTMLElement nonce?: string key: string insert(rule: string): void flush(): void tags: Array
} export interface EmotionCache { inserted: { [key: string]: string | true } registered: RegisteredCache sheet: StyleSheet key: string compat?: true nonce?: string insert( selector: string, serialized: SerializedStyles, sheet: StyleSheet, shouldCache: boolean ): string | void } export interface SerializedStyles { name: string styles: string map?: string next?: SerializedStyles } export const isBrowser: boolean export function getRegisteredStyles( registered: RegisteredCache, registeredStyles: Array
, classNames: string ): string export function insertStyles( cache: EmotionCache, serialized: SerializedStyles, isStringTag: boolean ): string | void