(
protected scriptName,
protected elementId = generateUniqueID(),
)
| 2 | |
| 3 | export class ScriptProxy<T = any> { |
| 4 | constructor( |
| 5 | protected scriptName, |
| 6 | protected elementId = generateUniqueID(), |
| 7 | ) { |
| 8 | return this; |
| 9 | } |
| 10 | |
| 11 | async getData(retry: number = 1): Promise<T> { |
| 12 | return new Promise((resolve, reject) => { |
nothing calls this directly
no test coverage detected