2022-03-17 12:54:49 +01:00
|
|
|
import { Ref } from "react";
|
|
|
|
import {IList} from "./IList";
|
2022-04-19 16:55:18 +02:00
|
|
|
import {ISettings} from "./ISettings";
|
2022-03-17 12:54:49 +01:00
|
|
|
|
|
|
|
export interface PropPage {
|
|
|
|
page: IList;
|
|
|
|
url: string;
|
2022-04-19 16:55:18 +02:00
|
|
|
settings: ISettings;
|
2022-03-17 12:54:49 +01:00
|
|
|
passphrase: string;
|
|
|
|
remove: (id) => void;
|
|
|
|
ref: Ref<IList>;
|
|
|
|
}
|