html2canvas/src/css/ITypeDescriptor.ts

7 lines
136 B
TypeScript

import {CSSValue} from './syntax/parser';
export interface ITypeDescriptor<T> {
name: string;
parse: (value: CSSValue) => T;
}