//#region src/index.d.ts interface Options { /** Make the output code slightly more compact (and harder to read) */ compact: boolean; /** Slightly improve compatibility with older browsers */ safe: boolean; } declare function jsSerialize(object: any, options?: Partial): string; declare namespace jsSerialize { var raw: (jsCode: string) => any; } export = jsSerialize;