19 lines
190 B
TypeScript
19 lines
190 B
TypeScript
![]() |
namespace _mimir.transfer
|
||
|
{
|
||
|
|
||
|
/**
|
||
|
*/
|
||
|
export type type_logic = {
|
||
|
execute : (
|
||
|
(
|
||
|
name : string,
|
||
|
stamp : string,
|
||
|
directory : string
|
||
|
)
|
||
|
=>
|
||
|
Array<string>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
}
|