prettier Show enum_client.js Source code
Return
Download prettier:
download enum_client.js Source code
- Download prettier Source code - Type:.js
- var APIKeys = require('./enum');
- // object that maps "AGE" to "age", "NAME" to "name"
- function foo(x: $Keys<typeof APIKeys>) { }
- foo("AGE");
- foo("LOCATION"); // error
- function bar(x: $Keys<{age: number}>) { }
- bar(APIKeys.AGE); // not an error: APIKeys.AGE = "age"
- bar(APIKeys.NAME); // error: since "NAME" is not in the smaller enum
- var object = {};
- object[APIKeys.AGE] = 123; // i.e., object.age = 123
- object[APIKeys.NAME] = "FOO"; // i.e., object.name = "FOO"
- var age:number = object[APIKeys.AGE];
- var name:number = object[APIKeys.NAME]; // error: object.name is a string
- var indices = { red: 0, green: 1, blue: 2 };
- var tuple = [42, "hello", false];
- var red:string = tuple[indices.red]; // error: tuple[0] is a number
downloadenum_client.js Source code
- Download prettier Source code
Related Source Codes/Software:
storybook - 2017-06-07
ionicons - The premium icon font for Ionic
... 2017-06-07
AsyncDisplayKit - Smooth asynchronous user interfaces for iOS apps.
... 2017-06-07
lottie-android - Render After Effects animations natively on Androi... 2017-06-07
parse-server - Parse-compatible API server module for Node/Expres... 2017-06-07
inferno - An extremely fast, React-like JavaScript library f... 2017-06-08
guetzli - Perceptual JPEG encoder 2017-06-08
cs-video-courses - List of Computer Science courses with video lectur... 2017-06-08
interviews - Everything you need to know to get the job. 2017-06-08
prepack - Prepack is a partial evaluator for JavaScript. Pre... 2017-06-08
CRYENGINE - CRYENGINE is a powerful real-time game development... 2017-06-11
postal - 2017-06-11
reactide - Reactide is the first dedicated IDE for React web ... 2017-06-11
rkt - rkt is a pod-native container engine for Linux. It... 2017-06-11
uWebSockets - Tiny WebSockets
https://for... 2017-06-11
realworld - TodoMVC for the RealWorld - Exemplary fullstack Me... 2017-06-11
goreplay - GoReplay is an open-source tool for capturing and ... 2017-06-10
pyenv - Simple Python version management 2017-06-10
redux-saga - An alternative side effect model for Redux apps
... 2017-06-10
angular-starter - 2017-06-10