From 1bd164abc2412714153e0b26cfcf725d646f959a Mon Sep 17 00:00:00 2001 From: Ludwig Stockbauer-Muhr Date: Wed, 2 Oct 2024 20:51:10 +0200 Subject: [PATCH] feat: add type specific properties to csn type elements --- apis/csn.d.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apis/csn.d.ts b/apis/csn.d.ts index c8e40c75..fc941924 100644 --- a/apis/csn.d.ts +++ b/apis/csn.d.ts @@ -107,6 +107,9 @@ export type EntityElements = { virtual?: boolean, unique?: boolean, notNull?: boolean, + precision?: number, + scale?: number, + length?: number, }, }