@codeplaydata/datasus
Version:
This application decompress the datasus micro data and serve as a gateway class.
13 lines (12 loc) • 364 B
TypeScript
/**
* Simple command pattern contract used across the infra layer.
*
* Implementations may expose init and/or exec methods to standardize
* creation and execution flows.
*/
export interface Command {
/** Optional factory-like initializer. */
init?(...params: any[]): any;
/** Optional execution entry point. */
exec?(...params: any[]): any;
}