mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-19 04:21:35 +00:00
9 lines
189 B
TypeScript
9 lines
189 B
TypeScript
export = ProfileColumnStatsEntry;
|
|
declare class ProfileColumnStatsEntry {
|
|
constructor(data: any);
|
|
type: string;
|
|
label: Text;
|
|
value: Text;
|
|
}
|
|
import Text = require("./Text");
|