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 function withTimeLogger<T extends any[], U>( | |
| fn: (...args: T) => Promise<U> | |
| ): (...args: T) => Promise<U>; | |
| export function withTimeLogger<T extends any[], U>( | |
| fn: (...args: T) => U | |
| ): (...args: T) => U; | |
| export function withTimeLogger<T extends any[], U>( | |
| fn: (...args: T) => U | Promise<U> | |
| ) { | |
| return function (...args: T): U | Promise<U> { |
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
| [ | |
| { | |
| "key": "cmd+0", | |
| "command": "workbench.action.openLastEditorInGroup" | |
| }, | |
| { | |
| "key": "cmd+1", | |
| "command": "workbench.action.openEditorAtIndex1" | |
| }, | |
| { |
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
| <?php | |
| /** | |
| * Enqueue core framework styles for login page. | |
| */ | |
| function enqueue_styles_login(): void | |
| { | |
| $version = ''; | |
| if (defined('CORE_FRAMEWORK_DIR_ROOT') && file_exists(CORE_FRAMEWORK_DIR_ROOT . 'assets/public/css/core_framework.css')) { | |
| $version = filemtime(CORE_FRAMEWORK_DIR_ROOT . 'assets/public/css/core_framework.css'); |