* Attempts a load of the score represented by the given data object. * @param data The data object to decode * @param success The action to call if the score was loaded * @param error The action to call if any error during loading ocurred. * @returns true if the data object is su
(data: unknown, success: (score: Score) => void, error: (error: Error) => void)
| 202 | * @returns true if the data object is supported and a load was initiated, otherwise false |
| 203 | */ |
| 204 | load(data: unknown, success: (score: Score) => void, error: (error: Error) => void): boolean; |
| 205 | |
| 206 | /** |
| 207 | * Attempts a load of the score represented by the given data object. |
no outgoing calls
no test coverage detected