/
githubmirror
/
tabler
Обзор
Документация
Войти
/
githubmirror
/
tabler
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
.build/modules.d.ts
24 строки
795 B
Bartosz-Do
Move `--tblr-` custom-property prefixing from Sass to PostCSS (#2795)
06 авг 2026, 00:48
Не верифицирован
06 авг 2026, 00:48
cad8eb8
Код
Авторство
О чём код?
// Minimal ambient typings for build-tool dependencies that ship no types. // Only the surface used by .build/build-css.ts is declared. declare module 'rtlcss' { import type { Plugin } from 'postcss' export default function rtlcss(config?: unknown): Plugin } declare module 'postcss-prefix-custom-properties' { import type { Plugin } from 'postcss' export default function prefixCustomProperties(options?: { prefix?: string; ignore?: (string | RegExp)[] }): Plugin } declare module 'clean-css' { interface MinifyResult { styles: string errors: string[] warnings: string[] sourceMap: { toString(): string } } export default class CleanCSS { constructor(options: Record<string, unknown>) minify(input: string[]): Promise<Record<string, MinifyResult>> } }