cyra-pure
Version:
single page application view engine
14 lines (13 loc) • 403 B
TypeScript
import { HashData } from './types';
/**
* set hash value with path and encoded data string
*/
export declare function setHashData(hashData: HashData): void;
/**
* get path and data from url hash
*/
export declare function getHashData(): HashData;
/**
* bind function context and give the function ability to call next function
*/
export declare function sequence(seq: Function[], ctx: any): void;