13 lines
260 B
TypeScript
13 lines
260 B
TypeScript
import { Ref } from "react";
|
|
import {IList} from "./IList";
|
|
import {ISettings} from "./ISettings";
|
|
|
|
export interface PropPage {
|
|
page: IList;
|
|
url: string;
|
|
settings: ISettings;
|
|
passphrase: string;
|
|
remove: (id) => void;
|
|
ref: Ref<IList>;
|
|
}
|