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