Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

184
Visualizações
How to change interface strucure and rename all references in VS Code

I have an interface

interface IApplicationState {
    config: IConfig;
    lang: ILang;
    //many others
}

Currently is used in many places like in classes with connect from react-redux, or in reducers method like:

const setLangReducer = (state: IApplicationState , { lang }: { lang: LangType }): IApplicationState  => ({
    ...state,
    lang: {
        currentLang: lang
    }
});

I want to add some fileds inside at the root level, and all existing move down as children for new property e.g.:

interface IApplicationState {
    generalConfigs: {
        config: IConfig;
        lang: ILang;
    };
    externalConfig: {
        domain: string;         
    }
}

If I make change manually, I will must to fix all references for config and lang from root to generalConfigs.config and generalConfigs.lang

maybe is there some automatically options to change all references by changing interface structure?

about 4 years ago · Juan Pablo Isaza
1 Respostas
Responde à pergunta

0

if you want to change all of the names you need to press ctrl and then 3 times R

about 4 years ago · Juan Pablo Isaza Relatório
Responde à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda