11 lines
120 B
TypeScript
11 lines
120 B
TypeScript
namespace TSE {
|
|
|
|
export interface IAsset {
|
|
|
|
readonly name: string;
|
|
|
|
readonly data: any;
|
|
|
|
}
|
|
|
|
} |