@nxtedition/types 23.0.22 → 23.0.24

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,28 @@
1
+ import { type AssertionGuard as __AssertionGuard } from "typia";
2
+ export type RenderProfile = (RenderProfileObject | string) | (RenderProfileObject | string)[];
3
+ export declare const isRenderProfile: (input: unknown) => input is RenderProfile;
4
+ export declare const assertRenderProfile: (input: unknown) => RenderProfile;
5
+ export declare const randomRenderProfile: () => RenderProfile;
6
+ export declare const assertGuardRenderProfile: __AssertionGuard<RenderProfile>;
7
+ export declare const stringifyRenderProfile: (input: RenderProfile) => string;
8
+ export declare const assertStringifyRenderProfile: (input: unknown) => string;
9
+ export interface RenderProfileObject {
10
+ format: string;
11
+ transcribe?: {
12
+ engine: string;
13
+ };
14
+ translate?: {
15
+ language: string;
16
+ };
17
+ audio?: {
18
+ pan?: string;
19
+ };
20
+ video?: unknown;
21
+ pick?: string[];
22
+ }
23
+ export declare const isRenderProfileObject: (input: unknown) => input is RenderProfileObject;
24
+ export declare const assertRenderProfileObject: (input: unknown) => RenderProfileObject;
25
+ export declare const randomRenderProfileObject: () => RenderProfileObject;
26
+ export declare const assertGuardRenderProfileObject: __AssertionGuard<RenderProfileObject>;
27
+ export declare const stringifyRenderProfileObject: (input: RenderProfileObject) => string;
28
+ export declare const assertStringifyRenderProfileObject: (input: unknown) => string;