import { Wordie } from "./logic";
/*
┌───────────────────────────────────────────────┐
│┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓│
│┃ Guess the WORDLE in six tries. ┃│
│┃ Each guess must be a valid five-letter word.┃│
│┃ ┃│
│┃ After each guess, the color of the tiles ┃│
│┃ will change to show how close your guess ┃│
│┃ was to the word. ┃│
│┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛│
└───────────────────────────────────────────────┘
Examples:
🟩 --> ■ -- Match
🟨 --> □ -- Wrong position
⬜️ --> x -- Doesn't exist
╔═════╦═════╦═════╦═════╦═════╗
║ W ║ E ║ A ║ R ║ Y ║
║ x ║ x ║ x ║ x ║ x ║
┗═════╩═════╩═════╩═════╩═════┛
The letter "W" is in the word and
in the correct spot.
_______________________________
╔═════╦═════╦═════╦═════╦═════╗
║ P ║ I ║ L ║ L ║ S ║
║ x ║ □ ║ x ║ x ║ x ║
┗═════╩═════╩═════╩═════╩═════┛
The letter "I" is in the word but
in the wrong spot.
_______________________________
╔═════╦═════╦═════╦═════╦═════╗
║ V ║ A ║ G ║ U ║ E ║
║ ■ ║ x ║ x ║ x ║ x ║
┗═════╩═════╩═════╩═════╩═════┛
Letters "A","G","U","E" are not
in the word in any spot.
*/
/* Hover over PlayWordle to see the result */
/*
🟩 --> ■ -- Match
🟨 --> □ -- Wrong position
⬜️ --> x -- Doesn't exist
*/
/* eslint-disable */
// ───────────────────────── @results ─────────────────────────
export type PlayWordle = Wordie<
//Choose the wordle day:
//______________________
/*----> */ 10,
//______________________
// Type words in-between quotes (must be words from words.ts)
[
/* 1 */ "starn",
/* 2 */ "soman",
/* 3 */ "fanos",
/* 4 */ "",
/* 5 */ "",
/* 6 */ "",
]
>;