1
0
mirror of https://github.com/robonen/tools.git synced 2026-03-20 02:44:45 +00:00

refactor(packages/stdlib): fix new lines for types

This commit is contained in:
2024-11-30 04:24:27 +07:00
parent e93b1ccb68
commit 41e3d90e41
2 changed files with 2 additions and 2 deletions

View File

@@ -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[];

View File

@@ -6,4 +6,4 @@ export type AnyFunction = (...args: any[]) => any;
/**
* Void function
*/
export type VoidFunction = () => void;
export type VoidFunction = () => void;