UNPKG

@mikezimm/fps-core-v7

Version:

Library of reusable core interfaces, types and constants migrated from fps-library-v2

15 lines 541 B
/** * This should be able to tell whether a SPO link is valid or not. * @param url * @param consoleLog * @param extraMessage * @returns */ export declare function _LinkIsValid(url: string, consoleLog?: boolean, extraMessage?: string): Promise<false | "" | "Link is not valid">; /** * This is different from _LinkIsValid in that it returns the status... ie 404, 403, etc... * @param url * @returns */ export declare function _LinkStatus(url: string): Promise<number | false>; //# sourceMappingURL=_LinkIsValid.d.ts.map