Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
17 lines
558 B
Plaintext
17 lines
558 B
Plaintext
import type { EmotionCache } from '@emotion/utils';
|
|
import { StylisPlugin } from "./types.js";
|
|
export interface Options {
|
|
nonce?: string;
|
|
stylisPlugins?: Array<StylisPlugin>;
|
|
key: string;
|
|
container?: Node;
|
|
speedy?: boolean;
|
|
/** @deprecate use `insertionPoint` instead */
|
|
prepend?: boolean;
|
|
insertionPoint?: HTMLElement;
|
|
}
|
|
declare let createCache: (options: Options) => EmotionCache;
|
|
export default createCache;
|
|
export type { EmotionCache };
|
|
export type { StylisElement, StylisPlugin, StylisPluginCallback } from "./types.js";
|