mirror of https://github.com/aldy505/code.git
7 lines
103 B
TypeScript
7 lines
103 B
TypeScript
|
export interface MetaItem {
|
||
|
hid?: string;
|
||
|
name?: string;
|
||
|
property?: string;
|
||
|
content: string;
|
||
|
}
|