import { CSSProcessedProps } from '../CSSProcessedProps'; import { MixedStyleDeclaration } from '../CSSProcessor'; type AssertEqual = T extends Expected ? Expected extends T ? true : never : never; export const testProcessedProps: AssertEqual< Extract< keyof CSSProcessedProps['native']['block']['retain'], 'backgroundColor' >, 'backgroundColor' > = true; export const testBackgroundColor: AssertEqual< Extract, 'backgroundColor' > = true; export const testObjectFit: AssertEqual< Extract, 'objectFit' > = true; export const testEmptyStyle: MixedStyleDeclaration = {};