custom-app
Version:
ITIMS��Ʒ�鿪��ר��React���,�Dz��ý��ּ�dhcc-app���������
17 lines (12 loc) • 303 B
Flow
/* @flow */
/* eslint-disable no-use-before-define */
import type {BaseStyle} from './BaseStyle'
export type JssStyle = {
...$Exact<BaseStyle>,
...$Exact<JssCustomStyle>,
}
type JssCustomStyle = {|
extend?: string | JssStyle,
composes?: string | string[],
[selector: string]: JssStyle,
|}