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;
}
