Hi my interface looks like this: ```ts
interface OptionManagerInterface {
get(name: string, required: false): string | null;
get(name: string, required: true): string;
get(name: string, required: boolean): string | null;
}
but when i implement the interface the types arent inherited (img)
but they are checked for (img)