9 lines
170 B
TypeScript
9 lines
170 B
TypeScript
/**
|
|
* TeamLogoViewData
|
|
*
|
|
* ViewData for team logo media rendering.
|
|
*/
|
|
export interface TeamLogoViewData {
|
|
buffer: string; // base64 encoded
|
|
contentType: string;
|
|
} |