26 lines
357 B
TypeScript
26 lines
357 B
TypeScript
|
|
namespace _heimdall.helpers.sqlite
|
||
|
|
{
|
||
|
|
|
||
|
|
/**
|
||
|
|
*/
|
||
|
|
export function query_put(
|
||
|
|
database_path : string,
|
||
|
|
query_template : string,
|
||
|
|
query_arguments : Record<string, any>
|
||
|
|
) : Promise<any>
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
*/
|
||
|
|
export function query_set(
|
||
|
|
database_path : string,
|
||
|
|
query_template : string,
|
||
|
|
query_arguments : Record<string, any>
|
||
|
|
) : Promise<any>
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|