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
415 B
12 lines
415 B
import StyleSheet from '../sheet';
|
|
import { Keyframes as KeyframesType, Stringifier } from '../types';
|
|
export default class Keyframes implements KeyframesType {
|
|
id: string;
|
|
name: string;
|
|
rules: string;
|
|
constructor(name: string, rules: string);
|
|
inject: (styleSheet: StyleSheet, stylisInstance?: Stringifier) => void;
|
|
toString: () => void;
|
|
getName(stylisInstance?: Stringifier): string;
|
|
}
|