8 lines
133 B
TypeScript
8 lines
133 B
TypeScript
import type { UUID } from 'crypto';
|
|
|
|
export interface Value {
|
|
uuid?: UUID;
|
|
path: string;
|
|
value: number | string | undefined;
|
|
}
|