From 38f961a1509c62cff4d3ebfd39e71978ef561f23 Mon Sep 17 00:00:00 2001 From: Ralf Sternberg Date: Sun, 25 Feb 2024 13:25:34 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20Re-export=20types=20used=20in=20?= =?UTF-8?q?API?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/content.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/api/content.ts b/src/api/content.ts index 3863c51..ad27f8b 100644 --- a/src/api/content.ts +++ b/src/api/content.ts @@ -2,6 +2,8 @@ import type { Color } from './colors.ts'; import type { Length } from './sizes.ts'; import type { Orientation, PaperSize } from './sizes.ts'; +export type { Color, Length, PaperSize, Orientation }; + /** * The complete definition of a document to create. */