From f4d44137ed4c370ab227bb0596f9c7af510f07e9 Mon Sep 17 00:00:00 2001 From: Devon Govett Date: Sun, 14 Jan 2024 15:03:43 -0500 Subject: [PATCH] forgot StyleSheetExit visitor in types --- node/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/node/index.d.ts b/node/index.d.ts index 1fe11d86..d138359b 100644 --- a/node/index.d.ts +++ b/node/index.d.ts @@ -183,6 +183,7 @@ type EnvironmentVariableVisitors = { export interface Visitor { StyleSheet?(stylesheet: StyleSheet): StyleSheet | void; + StyleSheetExit?(stylesheet: StyleSheet): StyleSheet | void; Rule?: RuleVisitor | RuleVisitors; RuleExit?: RuleVisitor | RuleVisitors; Declaration?: DeclarationVisitor | DeclarationVisitors;