mirror of
https://github.com/Start9Labs/start-sdk.git
synced 2026-03-30 12:21:57 +00:00
adjust comment
This commit is contained in:
8
types.ts
8
types.ts
@@ -220,7 +220,7 @@ export type WithNullable<T> = T & {
|
|||||||
export type DefaultString =
|
export type DefaultString =
|
||||||
| string
|
| string
|
||||||
| {
|
| {
|
||||||
/** The chars available for the randome generation */
|
/** The chars available for the random generation */
|
||||||
charset?: string;
|
charset?: string;
|
||||||
/** Length that we generate to */
|
/** Length that we generate to */
|
||||||
len: number;
|
len: number;
|
||||||
@@ -318,8 +318,10 @@ export type ValueSpecUnion = {
|
|||||||
/** What tag for the specification, for tag unions */
|
/** What tag for the specification, for tag unions */
|
||||||
tag: {
|
tag: {
|
||||||
id: string;
|
id: string;
|
||||||
name?: string; // optional for backwards compatibility - removed in 0.3.4
|
/** @deprecated - optional only for backwards compatibility */
|
||||||
description?: string; // optional for backwards compatibility - removed in 0.3.4
|
name?: string;
|
||||||
|
/** @deprecated - optional only for backwards compatibility */
|
||||||
|
description?: string;
|
||||||
"variant-names": {
|
"variant-names": {
|
||||||
[key: string]: string;
|
[key: string]: string;
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user