@shapediver/sdk.sdtf-v1
Version:
Official sdTF SDK for TypeScript
11 lines (8 loc) • 450 B
text/typescript
import { ISdtfReadableAsset, ISdtfWriteableAsset } from '@shapediver/sdk.sdtf-core';
/** A simple beautifier that re-formats sdTF components. */
export interface ISdtfFormatter {
/** Prints the sdTF JSON content for the given readable asset. */
prettifyReadableAsset(asset: ISdtfReadableAsset): string;
/** Prints the sdTF JSON content for the given writeable asset. */
prettifyWriteableAsset(asset: ISdtfWriteableAsset): string;
}