mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-18 20:12:12 +00:00
9 lines
189 B
TypeScript
9 lines
189 B
TypeScript
import type { RawNode } from '../../types/index.js';
|
|
|
|
export default class AccessibilityContext {
|
|
public label: string;
|
|
|
|
constructor(data: RawNode) {
|
|
this.label = data.label;
|
|
}
|
|
}
|