/** * Makes specified properties required. * * @example * ``` * import { AlertProps } from '~components/alert/interfaces' * * type InternalAlertProps = SomeRequired * * function Alert(props: AlertProps) { ... } * function InternalAlert(props: InternalAlertProps) { ... } * ``` */ export declare type SomeRequired = Type & { [Key in Keys]-?: Type[Key]; }; //# sourceMappingURL=types.d.ts.map