docdef/source/outputs/base.ts

16 lines
166 B
TypeScript
Raw Normal View History

2024-02-08 10:41:17 +01:00
/**
*/
interface type_output<type_result> extends lib_plankton.call.type_coproduct
2024-02-07 15:14:30 +01:00
{
2024-02-08 10:41:17 +01:00
/**
*/
render_element(
element : type_element
) : type_result
;
2024-02-07 15:14:30 +01:00
}