7 lines
218 B
JavaScript
7 lines
218 B
JavaScript
|
export {Tuple} from './Types/Tuple.mjs'
|
||
|
|
||
|
/* The purpose of the template argument is to ensure that all of the args
|
||
|
* are convertible to the same type.
|
||
|
*/
|
||
|
export const tuple = {'...any': () => args => ({elts: args})}
|