-
Notifications
You must be signed in to change notification settings - Fork 34
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fail to check Enum in Record #123
Comments
What about using this library instead? https://github.com/samchon/typescript-json#runtime-validators |
Thanks for the suggestion. However,
I ran with
|
Can you write an issue on my repo? I'll solve this problem in 3 hours. |
Simply copying and pasting should help you create an issue unless you want someone helping you to increase your repo's activity. |
OK, I enrolled the issue and your feature would be supported soon. Wait an hour. |
@thekingofcity Upgrade to Note that, For reference, import { equals, is } from "TSON";
const enum LanguageCode {
Arabic = "ar",
ChineseSimp = "zh-Hans",
ChineseTrad = "zh-Hant",
English = "en",
French = "fr",
German = "de",
Japanese = "ja",
Korean = "ko", // <-- this line
Portuguese = "pt",
Russian = "ru",
}
type DynamicEnumeration = {
[P in LanguageCode]?: string;
};
const data: DynamicEnumeration = {
en: "Line 1",
ko: "1호선", // <-- this line
"zh-Hans": "1号线",
"zh-Hant": "1號線",
};
(data as any).kr = "2호선";
console.log("is", is(data)); // true
console.log("equals", equals(data)); // false |
Thanks for pointing out this. I didn't notice there is a |
@thekingofcity Nope, |
Maybe my device is still running Anyway, it works now and really thank you and your |
data
is not a validTranslation
in the following code becausekr
should beko
, butis<Translation>(data) === true
. Let me know if it is not supported yet.I ran it under
ttypescript
andts-node
by$Env:TS_NODE_COMPILER="ttypescript"
and thennode --loader ts-node/esm test.ts
.typescript-is === 0.19.0
ttypescript === 1.5.13
typescript === 4.5.4
.The text was updated successfully, but these errors were encountered: