Repository URL to install this package:
|
Version:
1.0.10 ▾
|
/**
* @todo - wonder if this should be in view layer in the atom?
*/
declare const toHTTPS: (url: string) => string;
interface Image {
src?: string;
url?: string;
value?: string;
}
declare const fromUnsecureToSecureImage: (image: string | Image) => string | Image;
export default fromUnsecureToSecureImage;
export { fromUnsecureToSecureImage, fromUnsecureToSecureImage as toSecureProtocol, toHTTPS, };