mirror of
https://github.com/documentationjs/documentation.git
synced 2026-01-18 14:17:30 +00:00
cc @killercup this implements default parameter parsing for both flow-annotated and unannotated methods
10 lines
145 B
JavaScript
10 lines
145 B
JavaScript
/**
|
|
* Very Important Transform
|
|
*/
|
|
function veryImportantTransform(
|
|
input: Array<string>,
|
|
options: Object = {}
|
|
): string {
|
|
return "42";
|
|
}
|