芝麻web文件管理V1.00
编辑当前文件:/home/freeclou/app.optimyar.com/backend/node_modules/@emotion/cache/types/index.d.ts
// Definitions by: Junyoung Clare Jang
// TypeScript Version: 2.2 import { EmotionCache } from '@emotion/utils' export { EmotionCache } export interface StylisElement { type: string value: string props: Array
| string root: StylisElement | null parent: StylisElement | null children: Array
| string line: number column: number length: number return: string } export type StylisPluginCallback = ( element: StylisElement, index: number, children: Array
, callback: StylisPluginCallback ) => string | void export type StylisPlugin = ( element: StylisElement, index: number, children: Array
, callback: StylisPluginCallback ) => string | void export interface Options { nonce?: string stylisPlugins?: Array
key: string container?: HTMLElement speedy?: boolean prepend?: boolean } export default function createCache(options: Options): EmotionCache