UNPKG

step-sequence-generator

Version:

A step sequence generator for figure skating programs

7 lines (6 loc) 301 B
import { FilePathType } from '../../shared/types/file-path.type'; export declare abstract class UploaderAbstract { protected uploadToFile(filePath: FilePathType, content: string): void; protected formatToJSON(data: any): string; abstract upload(data: any, filePath: FilePathType): void; }