@fanoutio/grip
Version:
GRIP Interface Library
9 lines (8 loc) • 419 B
JavaScript
// The Format class is provided as a base class for all publishing
// formats that are included in the Item class. Examples of format
// implementations include HttpStreamFormat and HttpResponseFormat.
// In pure TypeScript this would not be needed (implementations would
// only need to implement IFormat), but since this needs to be consumable
// from JavaScript, we are exporting this class.
export class Format {
}