3 lines
47 B
TypeScript
3 lines
47 B
TypeScript
|
export interface IWrappedData<T> {
|
||
|
data: T;
|
||
|
}
|