mirror of
https://github.com/robonen/tools.git
synced 2026-03-20 10:54:44 +00:00
refactor(packages/stdlib): fix new lines for types
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
/**
|
||||
* A type that can be either a single value or an array of values
|
||||
*/
|
||||
export type Arrayable<T> = T | T[];
|
||||
export type Arrayable<T> = T | T[];
|
||||
|
||||
@@ -6,4 +6,4 @@ export type AnyFunction = (...args: any[]) => any;
|
||||
/**
|
||||
* Void function
|
||||
*/
|
||||
export type VoidFunction = () => void;
|
||||
export type VoidFunction = () => void;
|
||||
|
||||
Reference in New Issue
Block a user