├── .flowconfig ├── .gitattributes ├── .github └── workflows │ └── checks.yaml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .release-it.json ├── .travis.yml ├── .vscode ├── launch.json └── settings.json ├── LICENSE ├── README.md ├── __tests__ ├── __fixtures__ │ ├── .flowconfig │ ├── package.json │ ├── typecheck.js │ └── typecheck.ts ├── __snapshots__ │ ├── dist.flow.ts.snap │ ├── dist.typescript-3.5.ts.snap │ ├── dist.typescript-3.6.ts.snap │ ├── dist.typescript-3.7.ts.snap │ ├── dist.typescript-3.8.ts.snap │ ├── dist.typescript-3.9.ts.snap │ ├── dist.typescript-4.0.ts.snap │ ├── dist.typescript-4.1.ts.snap │ ├── dist.typescript-4.2.ts.snap │ ├── dist.typescript-4.3.ts.snap │ ├── dist.typescript-4.4.ts.snap │ ├── dist.typescript-4.5.ts.snap │ ├── dist.typescript-4.6.ts.snap │ ├── dist.typescript-4.7.ts.snap │ ├── dist.typescript-4.8.ts.snap │ ├── dist.typescript-4.9.ts.snap │ ├── dist.typescript-5.0.ts.snap │ ├── dist.typescript-5.1.ts.snap │ ├── dist.typescript-5.2.ts.snap │ ├── dist.typescript-5.3.ts.snap │ ├── dist.typescript-5.4.ts.snap │ ├── dist.typescript-5.5.ts.snap │ ├── dist.typescript-5.6.ts.snap │ ├── dist.typescript-5.7.ts.snap │ ├── dist.typescript-5.8.ts.snap │ └── dist.typescript-latest.ts.snap ├── dist.flow.ts ├── dist.typescript-3.5.ts ├── dist.typescript-3.6.ts ├── dist.typescript-3.7.ts ├── dist.typescript-3.8.ts ├── dist.typescript-3.9.ts ├── dist.typescript-4.0.ts ├── dist.typescript-4.1.ts ├── dist.typescript-4.2.ts ├── dist.typescript-4.3.ts ├── dist.typescript-4.4.ts ├── dist.typescript-4.5.ts ├── dist.typescript-4.6.ts ├── dist.typescript-4.7.ts ├── dist.typescript-4.8.ts ├── dist.typescript-4.9.ts ├── dist.typescript-5.0.ts ├── dist.typescript-5.1.ts ├── dist.typescript-5.2.ts ├── dist.typescript-5.3.ts ├── dist.typescript-5.4.ts ├── dist.typescript-5.5.ts ├── dist.typescript-5.6.ts ├── dist.typescript-5.7.ts ├── dist.typescript-5.8.ts ├── dist.typescript-latest.ts ├── package.json ├── src.typer.ts └── typescript-utils.ts ├── babel.config.mjs ├── eslint.config.mjs ├── index.d.ts ├── index.js.flow ├── is-clean.ts ├── jest.config.mjs ├── package.json ├── prepare-tests.mjs ├── src ├── collections │ ├── at-rules.ts │ ├── attributes.ts │ ├── data-types.ts │ ├── properties.ts │ ├── selectors.ts │ └── syntaxes.ts ├── data │ ├── patches.ts │ ├── svg.ts │ └── urls.json ├── declarator.ts ├── flow.ts ├── syntax │ ├── parser.ts │ └── typer.ts ├── typescript.ts └── utils │ ├── casing.ts │ ├── comment.ts │ ├── compat.ts │ ├── logger.ts │ ├── output.ts │ └── urls.ts ├── tsconfig.json ├── typings └── mdn-data.d.ts ├── update.ts └── utils.ts /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/checks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/.github/workflows/checks.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/.prettierrc -------------------------------------------------------------------------------- /.release-it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/.release-it.json -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/__fixtures__/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/__tests__/__fixtures__/.flowconfig -------------------------------------------------------------------------------- /__tests__/__fixtures__/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/__tests__/__fixtures__/package.json -------------------------------------------------------------------------------- /__tests__/__fixtures__/typecheck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/__tests__/__fixtures__/typecheck.js -------------------------------------------------------------------------------- /__tests__/__fixtures__/typecheck.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/__tests__/__fixtures__/typecheck.ts -------------------------------------------------------------------------------- /__tests__/__snapshots__/dist.flow.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/__tests__/__snapshots__/dist.flow.ts.snap -------------------------------------------------------------------------------- /__tests__/__snapshots__/dist.typescript-3.5.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/__tests__/__snapshots__/dist.typescript-3.5.ts.snap -------------------------------------------------------------------------------- /__tests__/__snapshots__/dist.typescript-3.6.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/__tests__/__snapshots__/dist.typescript-3.6.ts.snap -------------------------------------------------------------------------------- /__tests__/__snapshots__/dist.typescript-3.7.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/__tests__/__snapshots__/dist.typescript-3.7.ts.snap -------------------------------------------------------------------------------- /__tests__/__snapshots__/dist.typescript-3.8.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/__tests__/__snapshots__/dist.typescript-3.8.ts.snap -------------------------------------------------------------------------------- /__tests__/__snapshots__/dist.typescript-3.9.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/__tests__/__snapshots__/dist.typescript-3.9.ts.snap -------------------------------------------------------------------------------- /__tests__/__snapshots__/dist.typescript-4.0.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/__tests__/__snapshots__/dist.typescript-4.0.ts.snap -------------------------------------------------------------------------------- /__tests__/__snapshots__/dist.typescript-4.1.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/__tests__/__snapshots__/dist.typescript-4.1.ts.snap -------------------------------------------------------------------------------- /__tests__/__snapshots__/dist.typescript-4.2.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/__tests__/__snapshots__/dist.typescript-4.2.ts.snap -------------------------------------------------------------------------------- /__tests__/__snapshots__/dist.typescript-4.3.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/__tests__/__snapshots__/dist.typescript-4.3.ts.snap -------------------------------------------------------------------------------- /__tests__/__snapshots__/dist.typescript-4.4.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/__tests__/__snapshots__/dist.typescript-4.4.ts.snap -------------------------------------------------------------------------------- /__tests__/__snapshots__/dist.typescript-4.5.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/__tests__/__snapshots__/dist.typescript-4.5.ts.snap -------------------------------------------------------------------------------- /__tests__/__snapshots__/dist.typescript-4.6.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/__tests__/__snapshots__/dist.typescript-4.6.ts.snap -------------------------------------------------------------------------------- /__tests__/__snapshots__/dist.typescript-4.7.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/__tests__/__snapshots__/dist.typescript-4.7.ts.snap -------------------------------------------------------------------------------- /__tests__/__snapshots__/dist.typescript-4.8.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/__tests__/__snapshots__/dist.typescript-4.8.ts.snap -------------------------------------------------------------------------------- /__tests__/__snapshots__/dist.typescript-4.9.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/__tests__/__snapshots__/dist.typescript-4.9.ts.snap -------------------------------------------------------------------------------- /__tests__/__snapshots__/dist.typescript-5.0.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/__tests__/__snapshots__/dist.typescript-5.0.ts.snap -------------------------------------------------------------------------------- /__tests__/__snapshots__/dist.typescript-5.1.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/__tests__/__snapshots__/dist.typescript-5.1.ts.snap -------------------------------------------------------------------------------- /__tests__/__snapshots__/dist.typescript-5.2.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/__tests__/__snapshots__/dist.typescript-5.2.ts.snap -------------------------------------------------------------------------------- /__tests__/__snapshots__/dist.typescript-5.3.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/__tests__/__snapshots__/dist.typescript-5.3.ts.snap -------------------------------------------------------------------------------- /__tests__/__snapshots__/dist.typescript-5.4.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/__tests__/__snapshots__/dist.typescript-5.4.ts.snap -------------------------------------------------------------------------------- /__tests__/__snapshots__/dist.typescript-5.5.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/__tests__/__snapshots__/dist.typescript-5.5.ts.snap -------------------------------------------------------------------------------- /__tests__/__snapshots__/dist.typescript-5.6.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/__tests__/__snapshots__/dist.typescript-5.6.ts.snap -------------------------------------------------------------------------------- /__tests__/__snapshots__/dist.typescript-5.7.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/__tests__/__snapshots__/dist.typescript-5.7.ts.snap -------------------------------------------------------------------------------- /__tests__/__snapshots__/dist.typescript-5.8.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/__tests__/__snapshots__/dist.typescript-5.8.ts.snap -------------------------------------------------------------------------------- /__tests__/__snapshots__/dist.typescript-latest.ts.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/__tests__/__snapshots__/dist.typescript-latest.ts.snap -------------------------------------------------------------------------------- /__tests__/dist.flow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/__tests__/dist.flow.ts -------------------------------------------------------------------------------- /__tests__/dist.typescript-3.5.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/__tests__/dist.typescript-3.5.ts -------------------------------------------------------------------------------- /__tests__/dist.typescript-3.6.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/__tests__/dist.typescript-3.6.ts -------------------------------------------------------------------------------- /__tests__/dist.typescript-3.7.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/__tests__/dist.typescript-3.7.ts -------------------------------------------------------------------------------- /__tests__/dist.typescript-3.8.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/__tests__/dist.typescript-3.8.ts -------------------------------------------------------------------------------- /__tests__/dist.typescript-3.9.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/__tests__/dist.typescript-3.9.ts -------------------------------------------------------------------------------- /__tests__/dist.typescript-4.0.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/__tests__/dist.typescript-4.0.ts -------------------------------------------------------------------------------- /__tests__/dist.typescript-4.1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/__tests__/dist.typescript-4.1.ts -------------------------------------------------------------------------------- /__tests__/dist.typescript-4.2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/__tests__/dist.typescript-4.2.ts -------------------------------------------------------------------------------- /__tests__/dist.typescript-4.3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/__tests__/dist.typescript-4.3.ts -------------------------------------------------------------------------------- /__tests__/dist.typescript-4.4.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/__tests__/dist.typescript-4.4.ts -------------------------------------------------------------------------------- /__tests__/dist.typescript-4.5.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/__tests__/dist.typescript-4.5.ts -------------------------------------------------------------------------------- /__tests__/dist.typescript-4.6.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/__tests__/dist.typescript-4.6.ts -------------------------------------------------------------------------------- /__tests__/dist.typescript-4.7.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/__tests__/dist.typescript-4.7.ts -------------------------------------------------------------------------------- /__tests__/dist.typescript-4.8.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/__tests__/dist.typescript-4.8.ts -------------------------------------------------------------------------------- /__tests__/dist.typescript-4.9.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/__tests__/dist.typescript-4.9.ts -------------------------------------------------------------------------------- /__tests__/dist.typescript-5.0.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/__tests__/dist.typescript-5.0.ts -------------------------------------------------------------------------------- /__tests__/dist.typescript-5.1.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/__tests__/dist.typescript-5.1.ts -------------------------------------------------------------------------------- /__tests__/dist.typescript-5.2.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/__tests__/dist.typescript-5.2.ts -------------------------------------------------------------------------------- /__tests__/dist.typescript-5.3.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/__tests__/dist.typescript-5.3.ts -------------------------------------------------------------------------------- /__tests__/dist.typescript-5.4.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/__tests__/dist.typescript-5.4.ts -------------------------------------------------------------------------------- /__tests__/dist.typescript-5.5.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/__tests__/dist.typescript-5.5.ts -------------------------------------------------------------------------------- /__tests__/dist.typescript-5.6.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/__tests__/dist.typescript-5.6.ts -------------------------------------------------------------------------------- /__tests__/dist.typescript-5.7.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/__tests__/dist.typescript-5.7.ts -------------------------------------------------------------------------------- /__tests__/dist.typescript-5.8.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/__tests__/dist.typescript-5.8.ts -------------------------------------------------------------------------------- /__tests__/dist.typescript-latest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/__tests__/dist.typescript-latest.ts -------------------------------------------------------------------------------- /__tests__/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/__tests__/package.json -------------------------------------------------------------------------------- /__tests__/src.typer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/__tests__/src.typer.ts -------------------------------------------------------------------------------- /__tests__/typescript-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/__tests__/typescript-utils.ts -------------------------------------------------------------------------------- /babel.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/babel.config.mjs -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js.flow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/index.js.flow -------------------------------------------------------------------------------- /is-clean.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/is-clean.ts -------------------------------------------------------------------------------- /jest.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/jest.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/package.json -------------------------------------------------------------------------------- /prepare-tests.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/prepare-tests.mjs -------------------------------------------------------------------------------- /src/collections/at-rules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/src/collections/at-rules.ts -------------------------------------------------------------------------------- /src/collections/attributes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/src/collections/attributes.ts -------------------------------------------------------------------------------- /src/collections/data-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/src/collections/data-types.ts -------------------------------------------------------------------------------- /src/collections/properties.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/src/collections/properties.ts -------------------------------------------------------------------------------- /src/collections/selectors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/src/collections/selectors.ts -------------------------------------------------------------------------------- /src/collections/syntaxes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/src/collections/syntaxes.ts -------------------------------------------------------------------------------- /src/data/patches.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/src/data/patches.ts -------------------------------------------------------------------------------- /src/data/svg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/src/data/svg.ts -------------------------------------------------------------------------------- /src/data/urls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/src/data/urls.json -------------------------------------------------------------------------------- /src/declarator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/src/declarator.ts -------------------------------------------------------------------------------- /src/flow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/src/flow.ts -------------------------------------------------------------------------------- /src/syntax/parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/src/syntax/parser.ts -------------------------------------------------------------------------------- /src/syntax/typer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/src/syntax/typer.ts -------------------------------------------------------------------------------- /src/typescript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/src/typescript.ts -------------------------------------------------------------------------------- /src/utils/casing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/src/utils/casing.ts -------------------------------------------------------------------------------- /src/utils/comment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/src/utils/comment.ts -------------------------------------------------------------------------------- /src/utils/compat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/src/utils/compat.ts -------------------------------------------------------------------------------- /src/utils/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/src/utils/logger.ts -------------------------------------------------------------------------------- /src/utils/output.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/src/utils/output.ts -------------------------------------------------------------------------------- /src/utils/urls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/src/utils/urls.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typings/mdn-data.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/typings/mdn-data.d.ts -------------------------------------------------------------------------------- /update.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/update.ts -------------------------------------------------------------------------------- /utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frenic/csstype/HEAD/utils.ts --------------------------------------------------------------------------------