Run ❯
Get your own Node server
❯Run Code Ctrl+Alt+R
Change Orientation Ctrl+Alt+O
Change Theme Ctrl+Alt+D
Go to Spaces Ctrl+Alt+P
type StringMap = { [key: string]: unknown }; // `keyof StringMap` resolves to `string` here function createStringPair(property: keyof StringMap, value: string): StringMap { return { [property]: value }; } console.log(JSON.stringify(createStringPair('greeting', 'hello')));
{"greeting":"hello"}