@omnia/fx-models
Version:
Provide Omnia Fx Models Stuffs.
13 lines (12 loc) • 411 B
TypeScript
import { LinkTypeConfig } from "./LinkTypeConfig";
/**
* DocumentLinkTypeConfig class
* @implements {LinkTypeConfig}
*/
export interface DocumentLinkTypeConfig extends LinkTypeConfig {
/**
* File extension (without dot prefix). Used for determining which Office app will be used
* If not available, the handler uses the internal function to determine Office app
*/
fileExt?: string;
}