mirror of
https://github.com/asphyxia-core/plugins.git
synced 2026-03-21 17:34:46 -05:00
7 lines
87 B
TypeScript
7 lines
87 B
TypeScript
export interface Counter {
|
|
collection: 'counter';
|
|
|
|
key: string;
|
|
value: number;
|
|
}
|