nehonix-uri-processor
Version:
A powerful URI processor for encoding, decoding, and analyzing URI data securely.
22 lines • 556 B
TypeScript
import { ENC_TYPE } from ".";
export type EncodingResult = {
original: string;
encoded: string;
type: ENC_TYPE;
};
export type NestedEncodingOptions = {
/**
* If true, use each encoding's output as input for the next encoding
*/
sequential?: boolean;
/**
* If true, include all intermediate results in the response
*/
includeIntermediate?: boolean;
};
export type NestedEncodingResponse = {
input: string;
results: EncodingResult[];
finalResult?: string;
};
//# sourceMappingURL=enc.type.d.ts.map