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