This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Create a bookmark with this content: | |
javascript:((el => 'value' in el && typeof el.value === 'string' && (el.value = el.value + '¯\\_(ツ)_/¯') && void 0)(document.activeElement)) | |
// Use it to insert a shrug emoji in the text field currently focused |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export type MyType = { foo: string }; | |
export interface MyInterface { | |
foo: string; | |
} | |
export class MyClass implements MyInterface { | |
constructor(private foo: string) { } | |
} |
OlderNewer