Some checks failed
Main Confidence / confidence (push) Failing after 45s
## Summary - introduce surface-aware compressed governance outcomes and reuse the shared truth/explanation seams for operator-first summaries - apply the compressed outcome hierarchy across baseline, evidence, review, review-pack, canonical review/evidence, and artifact-oriented operation-run surfaces - expand spec 214 fixtures and Pest coverage, and fix tenant-panel route assertions by generating explicit tenant-panel URLs in the affected Filament tests ## Validation - `cd apps/platform && ./vendor/bin/sail bin pint --dirty --format agent` - focused governance compression suite from `specs/214-governance-outcome-compression/quickstart.md` passed (`68` tests, `445` assertions) - `cd apps/platform && ./vendor/bin/sail artisan test --compact tests/Feature/Filament/InventoryItemResourceTest.php tests/Feature/Filament/BackupSetUiEnforcementTest.php tests/Feature/Filament/RestoreRunUiEnforcementTest.php` passed (`18` tests, `81` assertions) Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de> Reviewed-on: #253
46 lines
1.3 KiB
Plaintext
46 lines
1.3 KiB
Plaintext
import {
|
|
AnyNode,
|
|
AtRule,
|
|
Builder,
|
|
Comment,
|
|
Container,
|
|
Declaration,
|
|
Document,
|
|
Root,
|
|
Rule
|
|
} from './postcss.js'
|
|
|
|
declare namespace Stringifier {
|
|
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
|