UNPKG
skailan-core
Version:
latest (6.0.0)
6.0.0
Servicio de autenticación y multitenancy para Skailan.
github.com/skailan/skailan
skailan/skailan
skailan-core
/
dist
/
organization
/
domain
/
repositories
/
IFeatureRepository.d.ts
8 lines
•
303 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{
Feature
}
from
"../entities/Feature"
;
export
interface
IFeatureRepository
{
findById
(
id
:
string
):
Promise
<
Feature
|
null
>;
findAll
():
Promise
<
Feature
[]>;
save
(
feature
:
Feature
):
Promise
<
void
>;
delete
(
id
:
string
):
Promise
<
void
>; }
//# sourceMappingURL=IFeatureRepository.d.ts.map