test: update snapshot

This commit is contained in:
LongYinan 2021-12-09 19:23:33 +08:00
parent f4b0a2e322
commit 99708384d9
No known key found for this signature in database
GPG key ID: C3666B7FC82ADAD7
2 changed files with 3 additions and 3 deletions

View file

@ -38,7 +38,7 @@ Generated by [AVA](https://avajs.dev).
}␊ }␊
export function either4(input: string | number | boolean | Obj): number␊ export function either4(input: string | number | boolean | Obj): number␊
/** default enum values are continuos i32s start from 0 */␊ /** default enum values are continuos i32s start from 0 */␊
export enum Kind {␊ export const enum Kind {␊
/** Barks */␊ /** Barks */␊
Dog = 0,␊ Dog = 0,␊
/** Kills birds */␊ /** Kills birds */␊
@ -47,7 +47,7 @@ Generated by [AVA](https://avajs.dev).
Duck = 2␊ Duck = 2␊
}␊ }␊
/** You could break the step and for an new continuous value. */␊ /** You could break the step and for an new continuous value. */␊
export enum CustomNumEnum {␊ export const enum CustomNumEnum {␊
One = 1,␊ One = 1,␊
Two = 2,␊ Two = 2,␊
Three = 3,␊ Three = 3,␊
@ -78,7 +78,7 @@ Generated by [AVA](https://avajs.dev).
age?: number | undefined | null␊ age?: number | undefined | null␊
}␊ }␊
export function receiveAllOptionalObject(obj?: AllOptionalObject | undefined | null): void␊ export function receiveAllOptionalObject(obj?: AllOptionalObject | undefined | null): void␊
export enum ALIAS {␊ export const enum ALIAS {␊
A = 0,␊ A = 0,␊
B = 1␊ B = 1␊
}␊ }␊