8 lines
150 B
TypeScript
8 lines
150 B
TypeScript
import type * as CSS from 'csstype';
|
|
|
|
// typing for custom variables.
|
|
declare module 'csstype' {
|
|
interface Properties {
|
|
"--minutes"?: number,
|
|
}
|
|
}
|