mirror of
https://github.com/actualbudget/actual.git
synced 2026-04-29 11:04:12 -05:00
* Migrate to @emotion/css * Remove custom CSSProperties * Fix errors * Fix typecheck error * Fix lint error * Fix typecheck error * Fix typecheck error * Fix typecheck error * Release notes * VRT * VRT * Revert VRT * Fix typecheck error * Fix glamor import * yarn * Fix lint error * Dedupe * Fix typecheck error * Update @emotion/css * Revert vrt screenshots * Fix toggle content * Fix content * Fix lint error * VRT * Cleanup unneeded style
10 lines
334 B
TypeScript
10 lines
334 B
TypeScript
import { type CSSObject } from '@emotion/css/dist/declarations/src/create-instance';
|
|
|
|
// Allow images to be imported
|
|
declare module '*.png';
|
|
|
|
declare module 'react' {
|
|
// eslint-disable-next-line @typescript-eslint/consistent-type-definitions, @typescript-eslint/no-empty-object-type
|
|
interface CSSProperties extends CSSObject {}
|
|
}
|