apply()

in src/plugin/helpers/placeholder.ts [55:62]


      apply(tr, oldPlaceholder) {
        // eslint-disable-next-line @typescript-eslint/no-unsafe-assignment -- getMeta always returns an any value
        const newPlaceholder: PlaceholderOption | undefined = tr.getMeta(
          PME_UPDATE_PLACEHOLDER
        );

        return newPlaceholder !== undefined ? newPlaceholder : oldPlaceholder;
      },