KeyInfo type
KeyInfo is a type that contains the API Secret. It should never be shared in insecure environments.
Signature:
export declare type KeyInfo = {
key: string;
secret?: string;
};
Example
Import
import {KeyInfo} from '@textile/hub';