From 0736ae8b0b2bc60d82a771d5dda1d5fec12e92c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Roland=20L=C3=B6sslein?= Date: Thu, 4 Feb 2021 18:12:54 +0100 Subject: [PATCH] fix(types): add `transitive` type --- types/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/index.d.ts b/types/index.d.ts index 321d1d6b0..bad2c7554 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -102,6 +102,7 @@ declare namespace StyleDictionary { interface ValueTransform { type: "value"; + transitive?: boolean; matcher?: (prop: Prop) => boolean; transformer: (prop: Prop, options: Platform) => string; }