@nxtedition/types 23.0.22 → 23.0.23

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,18 @@
1
+ import { type AssertionGuard as __AssertionGuard } from "typia";
2
+ import type { RenderProfile } from './render-profile.js';
3
+ import type { RenderScene } from './render-scene.js';
4
+ export interface RenderQuery {
5
+ type: string;
6
+ title: string;
7
+ parent?: string;
8
+ description?: {
9
+ scene?: RenderScene;
10
+ profile?: RenderProfile;
11
+ };
12
+ }
13
+ export declare const isRenderQuery: (input: unknown) => input is RenderQuery;
14
+ export declare const assertRenderQuery: (input: unknown) => RenderQuery;
15
+ export declare const randomRenderQuery: () => RenderQuery;
16
+ export declare const assertGuardRenderQuery: __AssertionGuard<RenderQuery>;
17
+ export declare const stringifyRenderQuery: (input: RenderQuery) => string;
18
+ export declare const assertStringifyRenderQuery: (input: unknown) => string;