mirror of
https://github.com/davidhalter/django-stubs.git
synced 2025-12-09 21:46:43 +08:00
14 lines
323 B
Python
14 lines
323 B
Python
from typing import Any, Optional
|
|
|
|
from django.http.request import HttpRequest
|
|
|
|
|
|
class RequestSite:
|
|
name: str
|
|
domain: str = ...
|
|
def __init__(self, request: HttpRequest) -> None: ...
|
|
def save(
|
|
self, force_insert: bool = ..., force_update: bool = ...
|
|
) -> Any: ...
|
|
def delete(self) -> Any: ...
|