2021-10-15 09:31:13 +00:00
|
|
|
/**
|
|
|
|
* This module was automatically generated by `ts-interface-builder`
|
|
|
|
*/
|
2020-07-21 13:20:51 +00:00
|
|
|
import * as t from "ts-interface-checker";
|
|
|
|
// tslint:disable:object-literal-key-quotes
|
|
|
|
|
2022-01-12 13:30:51 +00:00
|
|
|
export const RequestedInteractionOptions = t.iface([], {
|
|
|
|
"requiredAccess": t.opt("string"),
|
|
|
|
"hasCustomOptions": t.opt("boolean"),
|
|
|
|
});
|
|
|
|
|
|
|
|
export const InteractionOptions = t.iface([], {
|
|
|
|
"accessLevel": "string",
|
|
|
|
});
|
|
|
|
|
2020-07-21 13:20:51 +00:00
|
|
|
export const CustomSectionAPI = t.iface([], {
|
2022-01-12 13:30:51 +00:00
|
|
|
"configure": t.func("void", t.param("customOptions", "RequestedInteractionOptions")),
|
2020-07-21 13:20:51 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
const exportedTypeSuite: t.ITypeSuite = {
|
2022-01-12 13:30:51 +00:00
|
|
|
RequestedInteractionOptions,
|
|
|
|
InteractionOptions,
|
2020-07-21 13:20:51 +00:00
|
|
|
CustomSectionAPI,
|
|
|
|
};
|
|
|
|
export default exportedTypeSuite;
|