mirror of
https://github.com/dzeiocom/libs.git
synced 2025-06-14 19:59:17 +00:00
Changed typing file from .ts to .d.ts
Signed-off-by: Florian Bouillon <florian.bouillon@delta-wings.net>
This commit is contained in:
17
packages/logger/typing/types.d.ts
vendored
Normal file
17
packages/logger/typing/types.d.ts
vendored
Normal file
@ -0,0 +1,17 @@
|
||||
/**
|
||||
* Object Array
|
||||
*/
|
||||
export interface ObjectArray<T = any> {
|
||||
[key: string]: T
|
||||
}
|
||||
|
||||
/**
|
||||
* used Internally,
|
||||
* the different types of logs
|
||||
*/
|
||||
export type logType = 'debug' | 'dir' | 'dirxml' | 'error' | 'info' | 'log' | 'trace' | 'warn'
|
||||
|
||||
/**
|
||||
* The possible themes
|
||||
*/
|
||||
export type theme = undefined | 'light' | 'dark'
|
Reference in New Issue
Block a user