mirror of
https://iceshrimp.dev/iceshrimp/iceshrimp
synced 2024-12-23 02:58:09 +09:00
6 lines
77 B
TypeScript
6 lines
77 B
TypeScript
|
export type IIdentifier = {
|
||
|
type: string;
|
||
|
name: string;
|
||
|
value: string;
|
||
|
};
|