7 lines
117 B
TypeScript
7 lines
117 B
TypeScript
|
|
export declare class NameValue {
|
||
|
|
type: string;
|
||
|
|
class: string;
|
||
|
|
sendTo: string;
|
||
|
|
value: string;
|
||
|
|
}
|