UNPKG

@jeaks03/overseer

Version:

Just another TypeScript Back-End framework

9 lines (8 loc) 311 B
import { Converter } from "./converter"; export declare class JsonConverter extends Converter { getContentType(): string; canRead(target: string, contentType: string): boolean; canWrite(target: any, contentType: string): boolean; doWrite(target: any): string; doRead(target: string): any; }