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