You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
645 B
12 lines
645 B
3 years ago
|
import StyleSheet from '../sheet';
|
||
|
import { ExecutionContext, FlattenerResult, RuleSet, Stringifier } from '../types';
|
||
|
export default class GlobalStyle<Props = unknown> {
|
||
|
componentId: string;
|
||
|
isStatic: boolean;
|
||
|
rules: FlattenerResult<Props>;
|
||
|
constructor(rules: RuleSet<Props>, componentId: string);
|
||
|
createStyles(instance: number, executionContext: ExecutionContext & Props, styleSheet: StyleSheet, stylis: Stringifier): void;
|
||
|
removeStyles(instance: number, styleSheet: StyleSheet): void;
|
||
|
renderStyles(instance: number, executionContext: ExecutionContext & Props, styleSheet: StyleSheet, stylis: Stringifier): void;
|
||
|
}
|