8 lines
137 B
TypeScript
8 lines
137 B
TypeScript
export type StatsClient = {
|
|
id: number;
|
|
description?: string;
|
|
prefix: string;
|
|
key: string;
|
|
cleartextkey?: string;
|
|
};
|