aboutsummaryrefslogtreecommitdiffstats
path: root/vanilla/node_modules/postcss/lib/stringifier.d.ts
diff options
context:
space:
mode:
authorAdam Mathes <adam@adammathes.com>2026-02-14 14:46:37 -0800
committerAdam Mathes <adam@adammathes.com>2026-02-14 14:46:37 -0800
commitafa87af01c79a9baa539f2992d32154d2a4739bd (patch)
tree92c7416db734270a2fee1d72ee9cc119379ff8e1 /vanilla/node_modules/postcss/lib/stringifier.d.ts
parent3b927e84d200402281f68181cd4253bc77e5528d (diff)
downloadneko-afa87af01c79a9baa539f2992d32154d2a4739bd.tar.gz
neko-afa87af01c79a9baa539f2992d32154d2a4739bd.tar.bz2
neko-afa87af01c79a9baa539f2992d32154d2a4739bd.zip
task: delete vanilla js prototype\n\n- Removed vanilla/ directory and web/dist/vanilla directory\n- Updated Makefile, Dockerfile, and CI workflow to remove vanilla references\n- Cleaned up web/web.go to remove vanilla embed and routes\n- Verified build and tests pass\n\nCloses NK-2tcnmq
Diffstat (limited to 'vanilla/node_modules/postcss/lib/stringifier.d.ts')
-rw-r--r--vanilla/node_modules/postcss/lib/stringifier.d.ts46
1 files changed, 0 insertions, 46 deletions
diff --git a/vanilla/node_modules/postcss/lib/stringifier.d.ts b/vanilla/node_modules/postcss/lib/stringifier.d.ts
deleted file mode 100644
index b5a6f86..0000000
--- a/vanilla/node_modules/postcss/lib/stringifier.d.ts
+++ /dev/null
@@ -1,46 +0,0 @@
-import {
- AnyNode,
- AtRule,
- Builder,
- Comment,
- Container,
- Declaration,
- Document,
- Root,
- Rule
-} from './postcss.js'
-
-declare namespace Stringifier {
- // eslint-disable-next-line @typescript-eslint/no-use-before-define
- export { Stringifier_ as default }
-}
-
-declare class Stringifier_ {
- builder: Builder
- constructor(builder: Builder)
- atrule(node: AtRule, semicolon?: boolean): void
- beforeAfter(node: AnyNode, detect: 'after' | 'before'): string
- block(node: AnyNode, start: string): void
- body(node: Container): void
- comment(node: Comment): void
- decl(node: Declaration, semicolon?: boolean): void
- document(node: Document): void
- raw(node: AnyNode, own: null | string, detect?: string): boolean | string
- rawBeforeClose(root: Root): string | undefined
- rawBeforeComment(root: Root, node: Comment): string | undefined
- rawBeforeDecl(root: Root, node: Declaration): string | undefined
- rawBeforeOpen(root: Root): string | undefined
- rawBeforeRule(root: Root): string | undefined
- rawColon(root: Root): string | undefined
- rawEmptyBody(root: Root): string | undefined
- rawIndent(root: Root): string | undefined
- rawSemicolon(root: Root): boolean | undefined
- rawValue(node: AnyNode, prop: string): number | string
- root(node: Root): void
- rule(node: Rule): void
- stringify(node: AnyNode, semicolon?: boolean): void
-}
-
-declare class Stringifier extends Stringifier_ {}
-
-export = Stringifier